
body {
    font-family: Arial, sans-serif;
    background-color: #f5f5f5;
    margin: 0;
    padding: 0;
    width: 100%; /* Ensure body stretches to entire screen */
  }
/* Apply overflow-x: hidden only on mobile devices */
@media screen and (max-width: 767px) {
  body {
      width: 100%; /* Ensure content fits within viewport */
  }
}

  .navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: linear-gradient(to right, #4b72df 0%, #162b64 40%, #224196 80%, #4b72df 100%);      padding: 10px;
    color: #fff;
  }
  
  .navbar-logo img {
    width: 70px;
    height: 60px;
  }
  
  .navbar-text {
    font-weight: bold;
    margin-right: 10px;
    text-align: center;
  }
  
  .navbar-call-now {
    cursor: pointer;
    padding: 5px 10px;
    background-color: #fff;
    color: #333;
    border-radius: 5px;
  }
  
  .navbar-call-now:hover {
    background-color: #ddd;
  }
  
  /* Desktop View */
  
  .navbar-logo img {
  width: 50px;
  height: 50px;
  }
  
  .navbar-text {
  font-size: 18px;
  }
  
  .nav-links {
  list-style: none;
  display: flex;
  }
  
  .nav-links li {
  margin-right: 20px;
  }
  
  /* Media query for mobile view */
  @media (max-width: 768px) {
  .nav-links {
      flex-direction: column; /* Stack links vertically on smaller screens */
      padding: 0; /* Remove default list padding */
  }
  
  .nav-links li {
      margin-bottom: 10px; /* Add spacing between list items */
      position: relative; /* Create a relative positioning context for pseudo-element */
      margin-right: -6px;
      margin-left: 6px;
    }
  
  .nav-links li::before {
      content: ""; /* Use a bullet point as content */
      position: absolute;
      left: -10px; /* Adjust the bullet point's position */
  }
  
  .nav-links a:hover {
    background-color: #007bff; /* Choose your desired background color for hover */
    color: #fff; /* Change text color on hover for better visibility */
  }
  
  }
  .why-section {
  background-color: #3498db; /* Blue background color */
  padding: 20px;
  border-radius: 10px;
  margin-top: 30px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: #fff; /* White text color */
  }
  
  .why-section h2 {
  margin-top: 0;
  margin-bottom: 20px;
  font-size: x-large; /* Adjust font size as needed */
  }
  
  .why-section p {
  margin-bottom: 0;
  font-style: italic; /* Italic font style for a comical effect */
  }
  
  /* Media queries for responsive design */
  @media only screen and (max-width: 767px) {
  /* Additional styles for mobile view */
  .why-section {
      flex-direction: column;
      text-align: center;
  }
  }
  
  .nav-links a {
  color: white;
  text-decoration: none;
  font-size: 16px;
  }
  
  .hamburger-menu {
  display: none;
  flex-direction: column;
  cursor: pointer;
  }
  
  .line {
  width: 25px;
  height: 3px;
  background-color: white;
  margin-bottom: 4px;
  }
  
  .dropdown-menu {
  display: none;
  }
  
  .open {
  display: block;
  }
  
  .nav-links a:hover {
  color: #e0e0e0;
  }
  @media (max-width: 768px) {
  .nav-links {
  display: none;
  }
  
  .hamburger-menu {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  width: 30px;
  height: 20px;
  cursor: pointer;
  margin-right: 10px;
  }
  
  .line {
  width: 100%;
  height: 2px;
  background-color: white;
  transition: all 0.3s ease;
  }
  
  .dropdown-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background-color: #333;
  padding: 10px;
  z-index: 1;
  }
  
  .dropdown-menu.open {
  display: block;
  }
  
  .dropdown-nav-links li {
  margin-bottom: 10px;
  }
  
  .dropdown-nav-links a {
  color: white;
  text-decoration: none;
  font-size: 16px;
  }
  }
  
  
  .container {
    display: flex;
    flex-direction: column; /* Change to column for mobile */
    justify-content: space-between;
    align-items: flex-start;
    max-width: 851px;
    margin: 0 auto;
    padding: 20px;
    background-color: #fff;
    border-radius: 5px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  }
  
  .form-container {
    padding-right: 40px;
  }
  
  .details-container {
    background-color: #f2f2f2;
    padding: 20px;
    border-radius: 5px;
  }
  
  .company-logo {
    text-align: left;
    margin-bottom: 20px;
    margin-left: 20px;
  }
  
  h1 {
    text-align: center;
    color: #333;
    margin-bottom: 30px;
    font-size: x-large;
  }
  h2{
    text-align: center;
    color: #333;
    margin-bottom: 30px;
    font-size: small;
  }
  h3 {
    text-align: center;
    color: #333;
    margin-bottom: 30px;
    font-size: medium;
  }
  
  form {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 30px;
  }
  
  form input {
    width: 100%; /* Adjust width to 100% */
    max-width: 300px; /* Add max-width to limit input width */
    padding: 10px;
    margin-bottom: 10px;
  }
  
  form button {
    width: 100%; /* Adjust width to 100% */
    max-width: 150px; /* Add max-width to limit button width */
    padding: 10px;
    background-color: #333;
    color: #fff;
    border: none;
    border-radius: 5px;
    cursor: pointer;
  }
  
  form button:hover {
    background-color: #555;
  }
  
  .course-details h2 {
    color: #333;
    margin-top: 20px;
    margin-bottom: 20px;
  }
  
  .course-details ul {
    list-style-type: none;
    padding: 0;
    margin: 0;
  }
  
  .course-details li {
    margin-bottom: 5px;
  }
  
  .course-details li:nth-child(even) {
    color: #777;
  }
  
  p {
    margin-bottom: 20px;
  }
  
  .banner {
    width: 300px;
    height: 100px;
    background-color: #aee1f5;
    margin-top: 30px;
    margin-bottom: 20px;
    position: relative;
    margin-left: 26px;
  }
  
  .banner-text {
    position: absolute;
    top: 14px;
    left: 50%;
    transform: translateX(-50%);
    font-weight: bold;
    font-style: italic;
    font-size: 16px;
    color: #333;
    text-align: center;
  }
  
  footer {
    background: linear-gradient(to right, #4b72df 0%, #162b64 40%, #224196 80%, #4b72df 100%);      padding: 10px;
    color: #fff;
    text-align: center;
    padding: 20px;
    border-radius: 5px;
    margin-top: 30px;
    font-weight: bold;
  }
  
  footer p {
    margin: 0;
  }
  
  .additional-details {
    display: flex;
    justify-content: center;
    margin-top: 20px;
  }
  
  .oval-container {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
  }
  
  .oval {
    width: 120px;
    height: 60px;
    background-color: #333;
    color: #fff;
    border-radius: 30px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 10px;
  }
  
  .oval-text {
    font-weight: bold;
    font-size: 14px;
    text-align: center;
  }
  
  .course-details li:nth-child(even) {
    color: #fff;
    font-weight: bold;
    background-color: #659bec;
    padding: 4px;
    border-radius: 3px;
  }
  
  .course-details li:nth-child(odd) {
    color: #070000;
    font-weight: bold;
    background-color: #6cbaee;
    padding: 2px;
    border-radius: 3px;
  }
  
  .video-container {
  text-align: center;
  padding-top: 2.5%;
  }
  
  
  
  /* Media queries for responsive design */
  @media only screen and (min-width: 768px) {
    /* Adjustments for desktop */
    .container {
      flex-direction: row;
    }
  
    .form-container {
      flex: 1;
    }
  
    .details-container {
      flex: 1;
      margin-left: 20px;
    }
  
    form input, form button {
      width: auto; /* Reset width to auto for desktop */
      max-width: none; /* Reset max-width to none for desktop */
    }
  }
  
  .course-instructions {
  text-align: justify;
  background-color: #e3e7ec;
  padding: 20px;
  border-radius: 5px;
  margin: 30px auto;
  max-width: 600px;
  box-shadow: 0 8px 7px rgba(0, 0, 0, 0.1);
  }
  
  .course-instructions h2 {
  color: #333;
  font-size: 24px;
  margin-top: 0;
  margin-bottom: 20px;
  text-align: center;
  }
  
  .course-instructions ul {
  list-style-type: none;
  padding: 0;
  margin: 0;
  }
  
  .course-instructions li {
  position: relative;
  margin-bottom: 15px;
  padding-left: 30px;
  color: #555;
  font-size: 16px;
  line-height: 1.4;
  }
  
  .course-instructions li:before {
  content: "- ";
  position: absolute;
  left: 0;
  color: #999;
  font-size: 18px;
  line-height: 1;
  }
  
  @media only screen and (max-width: 767px) {
  .course-instructions h2 {
  font-size: 20px;
  }
  }
  
  
  
  
  /* Media queries for responsive design - Mobile view */
  @media only screen and (max-width: 767px) {
    .container {
      align-items: stretch;
    }
  
    .form-container {
      padding-right: 0;
    }
  
    .details-container {
      margin-top: 20px;
    }
  }
  
      @media only screen and (max-width: 767px){
  .navbar-call-now {
  font-weight: bold;
  text-align: center;
  font-size: 14px;
  padding: 3px 0px;
  border-radius: 3px;
  }}
  
  .brochure-section {
  margin-top: 20px;
  text-align: center;
  }
  
  .download-brochure{
  display: inline-block;
  padding: 10px 20px;
  background-color: #007bff;
  color: #fff;
  text-decoration: none;
  border-radius: 5px;
  
  }
  
  .call-symbol {
          position: fixed;
          bottom: 20px;
          right: 20px;
          background-color: #ffffff;
          color: #000000;
          font-size: 20px;
          padding: 10px;
          border-radius: 50%;
          cursor: pointer;
          z-index: 9999;
      }
  
  
  /* Your existing CSS styles */
  
  .faqs-container {
  max-width: 800px;
  margin: 30px auto;
  background-color: #fff;
  border-radius: 5px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  padding: 20px;
  }
  
  .faq {
  margin-bottom: 30px;
  border: 1px solid #ddd;
  border-radius: 10px;
  overflow: hidden;
  }
  
  .question {
  cursor: pointer;
  background-color: #0b4b75;
  color: #fff;
  padding: 15px;
  border-bottom: 1px solid #ddd;
  font-weight: bold;
  }
  
  .answer {
  display: none;
  padding: 15px;
  background-color: #f9f9f9;
  color: #333;
  }
  
  .faq:hover .question {
  background-color: #2186c3;
  }
  
  .faq:hover .answer {
  display: block;
  }
  
  .notice-box {
  background-color: #e6f7ff; /* Very light blue color - you can change this to your preferred color */
  color: #01050a; /* Dark blue text color - you can change this to your preferred color */
  padding: 10px; /* Adjust padding for a smaller box width */
  border: 1px solid #b3d9ff; /* Light blue border - you can change this to your preferred color */
  border-radius: 5px;
  margin: 0 auto; /* Center the box horizontally */
  margin-top: 20px; /* Adjust the top margin as needed */
  overflow-y: auto; /* Enable vertical scrolling */
  max-height: 200px; /* Set a maximum height for scrollability */
  text-align: left; /* Align text to the left */
  max-width: 300px; /* Set a maximum width for the box */
  }
  
  .notice-box {
  background-color: #e9ef6d; /* Very light blue color - you can change this to your preferred color */
  color: #004080; /* Dark blue text color - you can change this to your preferred color */
  padding: 10px; /* Adjust padding for a smaller box width */
  border: 1px solid #b3d9ff; /* Light blue border - you can change this to your preferred color */
  border-radius: 5px;
  margin: 0 auto; /* Center the box horizontally */
  margin-top: 20px; /* Adjust the top margin as needed */
  overflow-y: auto; /* Enable vertical scrolling */
  max-height: 200px; /* Set a maximum height for scrollability */
  text-align: left; /* Align text to the left */
  max-width: 400px; /* Set a maximum width for the box */
  }
  
  .notice-box h3 {
  margin-top: 0; /* Remove default margin for heading */
  text-align: center; /* Center the "Notice" title */
  text-decoration: underline; /* Add underline to the heading */
  }
  
  .notice-box ul {
  padding-left: 20px; /* Adjust padding for bullet points */
  margin-top: 0; /* Remove default margin for unordered list */
  }
  
  .notice-box p {
  margin-bottom: 0.5em; /* Adjust spacing between bullet points */
  }
  
  /* Media query for mobile compatibility */
  @media (max-width: 768px) {
  .notice-box {
    max-height: none; /* Remove maximum height on mobile */
    max-width: 320px;
  }
  }
  
  .flowchart {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-top: 50px;
    padding: 20px;
    position: relative;
  }
  
  
  .stage {
    position: relative;
    background: #fff;
    color: #333;
    padding: 15px;
    margin-bottom: 30px;
    border-radius: 12px;
    cursor: pointer;
    text-align: center;
    font-weight: bold;
    transition: background 0.5s, color 0.5s;
    z-index: 1;
  }
  
  .arrow-line img {
  width: 20px; /* Adjust the width of the arrow image */
  height: 20px; /* Adjust the height of the arrow image */
  }
  
  
  /* Add this to your existing styles or in the <style> tag */
  .why {
  background-color: #e6f7ff; /* Very light blue color - you can change this to your preferred color */
  color: #000000; /* Dark blue text color - you can change this to your preferred color */
  padding: 10px; /* Adjust padding for a smaller box width */
  /* border: 1px solid #000000; Light blue border - you can change this to your preferred color */
  border-radius: 5px;
  margin: 0 auto; /* Center the box horizontally */
  margin-top: 30px; /* Adjust the top margin as needed */
  max-width: 300px; /* Set a maximum width for the box */
  }
  
  .why h3{
  margin-top: 0; /* Remove default margin for heading */
  text-align: center; /* Center the heading */
  /* text-decoration: underline; Add underline to the heading */
  }
  
  
  /* Media query for mobile compatibility */
  @media (max-width: 768px) {
  .why {
    max-width: 100%; /* Allow the box to take the full width on mobile */
  }
  }
  
  /*Logo*/
  
  .style-0 {
  font-weight: 400;
  font-style: normal;
  font-family: Roboto, sans-serif;
  box-sizing: border-box;
  }
  
  .style-1 {
  margin: 40px 32px 0px;
  display: inline-block;
  max-height: 40px;
  width: auto;
  animation: 0.3s ease 0s 1 normal forwards running simageScroll;
  backface-visibility: hidden;
  max-width: 100%;
  height: auto;
  vertical-align: middle;
  border-style: none;
  font-weight: 400;
  font-style: normal;
  font-family: Roboto, sans-serif;
  box-sizing: border-box;
  }
  
  .style-2 {
  margin: 40px 32px 0px;
  display: inline-block;
  max-height: 40px;
  width: auto;
  animation: 0.3s ease 0s 1 normal forwards running simageScroll;
  backface-visibility: hidden;
  max-width: 100%;
  height: auto;
  vertical-align: middle;
  border-style: none;
  font-weight: 400;
  font-style: normal;
  font-family: Roboto, sans-serif;
  box-sizing: border-box;
  }
  
  .style-3 {
  margin: 40px 32px 0px;
  display: inline-block;
  max-height: 40px;
  width: auto;
  animation: 0.3s ease 0s 1 normal forwards running simageScroll;
  backface-visibility: hidden;
  max-width: 100%;
  height: auto;
  vertical-align: middle;
  border-style: none;
  font-weight: 400;
  font-style: normal;
  font-family: Roboto, sans-serif;
  box-sizing: border-box;
  }
  
  .style-4 {
  margin: 40px 32px 0px;
  display: inline-block;
  max-height: 40px;
  width: auto;
  animation: 0.3s ease 0s 1 normal forwards running simageScroll;
  backface-visibility: hidden;
  max-width: 100%;
  height: auto;
  vertical-align: middle;
  border-style: none;
  font-weight: 400;
  font-style: normal;
  font-family: Roboto, sans-serif;
  box-sizing: border-box;
  }
  
  .style-5 {
  margin: 40px 32px 0px;
  display: inline-block;
  max-height: 40px;
  width: auto;
  animation: 0.3s ease 0s 1 normal forwards running simageScroll;
  backface-visibility: hidden;
  max-width: 100%;
  height: auto;
  vertical-align: middle;
  border-style: none;
  font-weight: 400;
  font-style: normal;
  font-family: Roboto, sans-serif;
  box-sizing: border-box;
  }
  
  .style-6 {
  margin: 40px 32px 0px;
  display: inline-block;
  max-height: 40px;
  width: auto;
  animation: 0.3s ease 0s 1 normal forwards running simageScroll;
  backface-visibility: hidden;
  max-width: 100%;
  height: auto;
  vertical-align: middle;
  border-style: none;
  font-weight: 400;
  font-style: normal;
  font-family: Roboto, sans-serif;
  box-sizing: border-box;
  }
  
  .style-7 {
  margin: 40px 32px 0px;
  display: inline-block;
  max-height: 40px;
  width: auto;
  animation: 0.3s ease 0s 1 normal forwards running simageScroll;
  backface-visibility: hidden;
  max-width: 100%;
  height: auto;
  vertical-align: middle;
  border-style: none;
  font-weight: 400;
  font-style: normal;
  font-family: Roboto, sans-serif;
  box-sizing: border-box;
  }
  
  .style-8 {
  margin: 40px 32px 0px;
  display: inline-block;
  max-height: 40px;
  width: auto;
  animation: 0.3s ease 0s 1 normal forwards running simageScroll;
  backface-visibility: hidden;
  max-width: 100%;
  height: auto;
  vertical-align: middle;
  border-style: none;
  font-weight: 400;
  font-style: normal;
  font-family: Roboto, sans-serif;
  box-sizing: border-box;
  }
  
  .style-9 {
  margin: 40px 32px 0px;
  display: inline-block;
  max-height: 40px;
  width: auto;
  animation: 0.3s ease 0s 1 normal forwards running simageScroll;
  backface-visibility: hidden;
  max-width: 100%;
  height: auto;
  vertical-align: middle;
  border-style: none;
  font-weight: 400;
  font-style: normal;
  font-family: Roboto, sans-serif;
  box-sizing: border-box;
  }
  
  .style-10 {
  margin: 40px 32px 0px;
  display: inline-block;
  max-height: 40px;
  width: auto;
  animation: 0.3s ease 0s 1 normal forwards running simageScroll;
  backface-visibility: hidden;
  max-width: 100%;
  height: auto;
  vertical-align: middle;
  border-style: none;
  font-weight: 400;
  font-style: normal;
  font-family: Roboto, sans-serif;
  box-sizing: border-box;
  }
  
  .style-11 {
  margin: 40px 32px 0px;
  display: inline-block;
  max-height: 40px;
  width: auto;
  animation: 0.3s ease 0s 1 normal forwards running simageScroll;
  backface-visibility: hidden;
  max-width: 100%;
  height: auto;
  vertical-align: middle;
  border-style: none;
  font-weight: 400;
  font-style: normal;
  font-family: Roboto, sans-serif;
  box-sizing: border-box;
  }
  
  .style-12 {
  margin: 40px 32px 0px;
  display: inline-block;
  max-height: 40px;
  width: auto;
  animation: 0.3s ease 0s 1 normal forwards running simageScroll;
  backface-visibility: hidden;
  max-width: 100%;
  height: auto;
  vertical-align: middle;
  border-style: none;
  font-weight: 400;
  font-style: normal;
  font-family: Roboto, sans-serif;
  box-sizing: border-box;
  }
  
  .style-13 {
  margin: 40px 32px 0px;
  display: inline-block;
  max-height: 40px;
  width: auto;
  animation: 0.3s ease 0s 1 normal forwards running simageScroll;
  backface-visibility: hidden;
  max-width: 100%;
  height: auto;
  vertical-align: middle;
  border-style: none;
  font-weight: 400;
  font-style: normal;
  font-family: Roboto, sans-serif;
  box-sizing: border-box;
  }
  
  .style-14 {
  margin: 40px 32px 0px;
  display: inline-block;
  max-height: 40px;
  width: auto;
  animation: 0.3s ease 0s 1 normal forwards running simageScroll;
  backface-visibility: hidden;
  max-width: 100%;
  height: auto;
  vertical-align: middle;
  border-style: none;
  font-weight: 400;
  font-style: normal;
  font-family: Roboto, sans-serif;
  box-sizing: border-box;
  }
  
  
  body {
    font-family: Arial, sans-serif;
    background-color: #f5f5f5;
    margin: 0;
    padding: 0;
    width: 100%; /* Ensure body stretches to entire screen */
 
  }
/* Apply overflow-x: hidden only on mobile devices */
@media screen and (max-width: 767px) {
  body {
 
      width: 100%; /* Ensure content fits within viewport */
  }
}
  
  .navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: linear-gradient(to right, #4b72df 0%, #162b64 40%, #224196 80%, #4b72df 100%);      padding: 10px;
    color: #fff;
  }
  
  .navbar-logo img {
    width: 70px;
    height: 60px;
  }
  
  .navbar-text {
    font-weight: bold;
    margin-right: 10px;
    text-align: center;
  }
  
  .navbar-call-now {
    cursor: pointer;
    padding: 5px 10px;
    background-color: #fff;
    color: #333;
    border-radius: 5px;
  }
  
  .navbar-call-now:hover {
    background-color: #ddd;
  }
  
  /* Desktop View */
  
  .navbar-logo img {
  width: 50px;
  height: 50px;
  }
  
  .navbar-text {
  font-size: 18px;
  }
  
  .nav-links {
  list-style: none;
  display: flex;
  }
  
  .nav-links li {
  margin-right: 20px;
  }
  
  /* Media query for mobile view */
  @media (max-width: 768px) {
  .nav-links {
      flex-direction: column; /* Stack links vertically on smaller screens */
      padding: 0; /* Remove default list padding */
  }
  
  .nav-links li {
      margin-bottom: 10px; /* Add spacing between list items */
      position: relative; /* Create a relative positioning context for pseudo-element */
      margin-right: -6px;
      margin-left: 6px;
    }
  
  .nav-links li::before {
      content: ""; /* Use a bullet point as content */
      position: absolute;
      left: -10px; /* Adjust the bullet point's position */
  }
  
  .nav-links a:hover {
    background-color: #007bff; /* Choose your desired background color for hover */
    color: #fff; /* Change text color on hover for better visibility */
  }
  
  }
  .why-section {
  background-color: #3498db; /* Blue background color */
  padding: 20px;
  border-radius: 10px;
  margin-top: 30px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: #fff; /* White text color */
  }
  
  .why-section h2 {
  margin-top: 0;
  margin-bottom: 20px;
  font-size: x-large; /* Adjust font size as needed */
  }
  
  .why-section p {
  margin-bottom: 0;
  font-style: italic; /* Italic font style for a comical effect */
  }
  
  /* Media queries for responsive design */
  @media only screen and (max-width: 767px) {
  /* Additional styles for mobile view */
  .why-section {
      flex-direction: column;
      text-align: center;
  }
  }
  
  .nav-links a {
  color: white;
  text-decoration: none;
  font-size: 16px;
  }
  
  .hamburger-menu {
  display: none;
  flex-direction: column;
  cursor: pointer;
  }
  
  .line {
  width: 25px;
  height: 3px;
  background-color: white;
  margin-bottom: 4px;
  }
  
  .dropdown-menu {
  display: none;
  }
  
  .open {
  display: block;
  }
  
  .nav-links a:hover {
  color: #e0e0e0;
  }
  @media (max-width: 768px) {
  .nav-links {
  display: none;
  }
  
  .hamburger-menu {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  width: 30px;
  height: 20px;
  cursor: pointer;
  margin-right: 10px;
  }
  
  .line {
  width: 100%;
  height: 2px;
  background-color: white;
  transition: all 0.3s ease;
  }
  
  .dropdown-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background-color: #333;
  padding: 10px;
  z-index: 1;
  }
  
  .dropdown-menu.open {
  display: block;
  }
  
  .dropdown-nav-links li {
  margin-bottom: 10px;
  }
  
  .dropdown-nav-links a {
  color: white;
  text-decoration: none;
  font-size: 16px;
  }
  }
  
  
  .container {
    display: flex;
    flex-direction: column; /* Change to column for mobile */
    justify-content: space-between;
    align-items: flex-start;
    max-width: 851px;
    margin: 0 auto;
    padding: 20px;
    background-color: #fff;
    border-radius: 5px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  }
  
  .form-container {
    padding-right: 40px;
  }
  
  .details-container {
    background-color: #f2f2f2;
    padding: 20px;
    border-radius: 5px;
  }
  
  .company-logo {
    text-align: left;
    margin-bottom: 20px;
    margin-left: 20px;
  }
  
  h1 {
    text-align: center;
    color: #333;
    margin-bottom: 30px;
    font-size: x-large;
  }
  h2{
    text-align: center;
    color: #333;
    margin-bottom: 30px;
    font-size: medium;
  }
  h3 {
    text-align: center;
    color: #333;
    margin-bottom: 30px;
    font-size: medium;
  }
  
  form {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 30px;
  }
  
  form input {
    width: 100%; /* Adjust width to 100% */
    max-width: 300px; /* Add max-width to limit input width */
    padding: 10px;
    margin-bottom: 10px;
  }
  
  form button {
    width: 100%; /* Adjust width to 100% */
    max-width: 150px; /* Add max-width to limit button width */
    padding: 10px;
    background-color: #333;
    color: #fff;
    border: none;
    border-radius: 5px;
    cursor: pointer;
  }
  
  form button:hover {
    background-color: #555;
  }
  
  .course-details h2 {
    color: #333;
    margin-top: 20px;
    margin-bottom: 20px;
  }
  
  .course-details ul {
    list-style-type: none;
    padding: 0;
    margin: 0;
  }
  
  .course-details li {
    margin-bottom: 5px;
  }
  
  .course-details li:nth-child(even) {
    color: #777;
  }
  
  p {
    margin-bottom: 20px;
  }
  
  .banner {
    width: 300px;
    height: 100px;
    background-color: #aee1f5;
    margin-top: 30px;
    margin-bottom: 20px;
    position: relative;
    margin-left: 26px;
  }
  
  .banner-text {
    position: absolute;
    top: 14px;
    left: 50%;
    transform: translateX(-50%);
    font-weight: bold;
    font-style: italic;
    font-size: 16px;
    color: #333;
    text-align: center;
  }
  
  footer {
    background: linear-gradient(to right, #4b72df 0%, #162b64 40%, #224196 80%, #4b72df 100%);      padding: 10px;
    color: #fff;
    text-align: center;
    padding: 20px;
    border-radius: 5px;
    margin-top: 30px;
    font-weight: bold;
  }
  
  footer p {
    margin: 0;
  }
  
  .additional-details {
    display: flex;
    justify-content: center;
    margin-top: 20px;
  }
  
  .oval-container {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
  }
  
  .oval {
    width: 120px;
    height: 60px;
    background-color: #333;
    color: #fff;
    border-radius: 30px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 10px;
  }
  
  .oval-text {
    font-weight: bold;
    font-size: 14px;
    text-align: center;
  }
  
  .course-details li:nth-child(even) {
    color: #fff;
    font-weight: bold;
    background-color: #659bec;
    padding: 4px;
    border-radius: 3px;
  }
  
  .course-details li:nth-child(odd) {
    color: #070000;
    font-weight: bold;
    background-color: #6cbaee;
    padding: 2px;
    border-radius: 3px;
  }
  
  .video-container {
  text-align: center;
  padding-top: 2.5%;
  }
  
  
  
  /* Media queries for responsive design */
  @media only screen and (min-width: 768px) {
    /* Adjustments for desktop */
    .container {
      flex-direction: row;
    }
  
    .form-container {
      flex: 1;
    }
  
    .details-container {
      flex: 1;
      margin-left: 20px;
    }
  
    form input, form button {
      width: auto; /* Reset width to auto for desktop */
      max-width: none; /* Reset max-width to none for desktop */
    }
  }
  
  .course-instructions {
  text-align: justify;
  background-color: #e3e7ec;
  padding: 20px;
  border-radius: 5px;
  margin: 30px auto;
  max-width: 600px;
  box-shadow: 0 8px 7px rgba(0, 0, 0, 0.1);
  }
  
  .course-instructions h2 {
  color: #333;
  font-size: 24px;
  margin-top: 0;
  margin-bottom: 20px;
  text-align: center;
  }
  
  .course-instructions ul {
  list-style-type: none;
  padding: 0;
  margin: 0;
  }
  
  .course-instructions li {
  position: relative;
  margin-bottom: 15px;
  padding-left: 30px;
  color: #555;
  font-size: 16px;
  line-height: 1.4;
  }
  
  .course-instructions li:before {
  content: "– ";
  position: absolute;
  left: 0;
  color: #999;
  font-size: 18px;
  line-height: 1;
  }
  
  @media only screen and (max-width: 767px) {
  .course-instructions h2 {
  font-size: 20px;
  }
  }
  
  
  
  
  /* Media queries for responsive design - Mobile view */
  @media only screen and (max-width: 767px) {
    .container {
      align-items: stretch;
    }
  
    .form-container {
      padding-right: 0;
    }
  
    .details-container {
      margin-top: 20px;
    }
  }
  
      @media only screen and (max-width: 767px){
  .navbar-call-now {
  font-weight: bold;
  text-align: center;
  font-size: 14px;
  padding: 3px 0px;
  border-radius: 3px;
  }}
  
  .brochure-section {
  margin-top: 20px;
  text-align: center;
  }
  
  .download-brochure{
  display: inline-block;
  padding: 10px 20px;
  background-color: #007bff;
  color: #fff;
  text-decoration: none;
  border-radius: 5px;
  
  }
  
  .call-symbol {
          position: fixed;
          bottom: 20px;
          right: 20px;
          background-color: #ffffff;
          color: #000000;
          font-size: 20px;
          padding: 10px;
          border-radius: 50%;
          cursor: pointer;
          z-index: 9999;
      }
  
  
  /* Your existing CSS styles */
  
  .faqs-container {
  max-width: 800px;
  margin: 30px auto;
  background-color: #fff;
  border-radius: 5px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  padding: 20px;
  }
  
  .faq {
  margin-bottom: 30px;
  border: 1px solid #ddd;
  border-radius: 10px;
  overflow: hidden;
  }
  
  .question {
  cursor: pointer;
  background-color: #0b4b75;
  color: #fff;
  padding: 15px;
  border-bottom: 1px solid #ddd;
  font-weight: bold;
  }
  
  .answer {
  display: none;
  padding: 15px;
  background-color: #f9f9f9;
  color: #333;
  }
  
  .faq:hover .question {
  background-color: #2186c3;
  }
  
  .faq:hover .answer {
  display: block;
  }
  
  .notice-box {
  background-color: #e9ef6d; /* Very light blue color - you can change this to your preferred color */
  color: #01050a; /* Dark blue text color - you can change this to your preferred color */
  padding: 10px; /* Adjust padding for a smaller box width */
  border: 1px solid #b3d9ff; /* Light blue border - you can change this to your preferred color */
  border-radius: 5px;
  margin: 0 auto; /* Center the box horizontally */
  margin-top: 20px; /* Adjust the top margin as needed */
  overflow-y: auto; /* Enable vertical scrolling */
  max-height: 200px; /* Set a maximum height for scrollability */
  text-align: left; /* Align text to the left */
  max-width: 400px; /* Set a maximum width for the box */
  }
  
  .notice-box h3 {
  margin-top: 0; /* Remove default margin for heading */
  text-align: center; /* Center the "Notice" title */
  text-decoration: underline; /* Add underline to the heading */
  }
  
  .notice-box ul {
  padding-left: 20px; /* Adjust padding for bullet points */
  margin-top: 0; /* Remove default margin for unordered list */
  }
  
  .notice-box p {
  margin-bottom: 0.5em; /* Adjust spacing between bullet points */
  }
  
  /* Media query for mobile compatibility */
  @media (max-width: 768px) {
  .notice-box {
    max-height: none; /* Remove maximum height on mobile */
    max-width: 320px;
  }
  }
  
  
  
  .flowchart {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-top: 50px;
    padding: 20px;
    position: relative;
  }
  
  
  
  .stage {
    position: relative;
    background: #fff;
    color: #333;
    padding: 15px;
    margin-bottom: 30px;
    border-radius: 12px;
    cursor: pointer;
    text-align: center;
    font-weight: bold;
    transition: background 0.5s, color 0.5s;
    z-index: 1;
  }
  
  .flowchart {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-top: 50px;
  padding: 20px;
  position: relative;
  }
  
  .stage {
  position: relative;
  background: #fff;
  color: #333;
  padding: 15px;
  margin-bottom: 30px;
  border-radius: 12px;
  cursor: pointer;
  text-align: center;
  font-weight: bold;
  transition: background 0.5s, color 0.5s;
  z-index: 1;
  overflow: hidden; /* Hide overflow to prevent arrow overflow */
  }
  
  .arrow-line img {
  width: 20px; /* Adjust the width of the arrow image */
  height: 20px; /* Adjust the height of the arrow image */
  }
  
  
  .why {
  background-color: #ffffff; /* Very light blue color - you can change this to your preferred color */
  color: #000000; /* Dark blue text color - you can change this to your preferred color */
  padding: 25px; /* Adjust padding for a smaller box width */
  /* border: 1px solid #000000; Light blue border - you can change this to your preferred color */
  border-radius: 5px;
  margin: 0 auto; /* Center the box horizontally */
  margin-top: 30px; /* Adjust the top margin as needed */
  max-width: 594px; /* Set a maximum width for the box */
  border-radius: 5px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  }
  
  .why h3 {
  margin-top: 0; /* Remove default margin for heading */
  text-align: center; /* Center the heading */
  /*text-decoration: underline; Add underline to the heading*/
  }
  
  /* Media query for mobile compatibility */
  @media (max-width: 768px) {
  .why {
    max-width: 100%; /* Allow the box to take the full width on mobile */
  }
  }
  
  /*Logo*/
  
  .style-0 {
  font-weight: 400;
  font-style: normal;
  font-family: Roboto, sans-serif;
  box-sizing: border-box;
  }
  
  .style-1 {
  margin: 40px 32px 0px;
  display: inline-block;
  max-height: 40px;
  width: auto;
  animation: 0.3s ease 0s 1 normal forwards running simageScroll;
  backface-visibility: hidden;
  max-width: 100%;
  height: auto;
  vertical-align: middle;
  border-style: none;
  font-weight: 400;
  font-style: normal;
  font-family: Roboto, sans-serif;
  box-sizing: border-box;
  }
  
  .style-2 {
  margin: 40px 32px 0px;
  display: inline-block;
  max-height: 40px;
  width: auto;
  animation: 0.3s ease 0s 1 normal forwards running simageScroll;
  backface-visibility: hidden;
  max-width: 100%;
  height: auto;
  vertical-align: middle;
  border-style: none;
  font-weight: 400;
  font-style: normal;
  font-family: Roboto, sans-serif;
  box-sizing: border-box;
  }
  
  .style-3 {
  margin: 40px 32px 0px;
  display: inline-block;
  max-height: 40px;
  width: auto;
  animation: 0.3s ease 0s 1 normal forwards running simageScroll;
  backface-visibility: hidden;
  max-width: 100%;
  height: auto;
  vertical-align: middle;
  border-style: none;
  font-weight: 400;
  font-style: normal;
  font-family: Roboto, sans-serif;
  box-sizing: border-box;
  }
  
  .style-4 {
  margin: 40px 32px 0px;
  display: inline-block;
  max-height: 40px;
  width: auto;
  animation: 0.3s ease 0s 1 normal forwards running simageScroll;
  backface-visibility: hidden;
  max-width: 100%;
  height: auto;
  vertical-align: middle;
  border-style: none;
  font-weight: 400;
  font-style: normal;
  font-family: Roboto, sans-serif;
  box-sizing: border-box;
  }
  
  .style-5 {
  margin: 40px 32px 0px;
  display: inline-block;
  max-height: 40px;
  width: auto;
  animation: 0.3s ease 0s 1 normal forwards running simageScroll;
  backface-visibility: hidden;
  max-width: 100%;
  height: auto;
  vertical-align: middle;
  border-style: none;
  font-weight: 400;
  font-style: normal;
  font-family: Roboto, sans-serif;
  box-sizing: border-box;
  }
  
  .style-6 {
  margin: 40px 32px 0px;
  display: inline-block;
  max-height: 40px;
  width: auto;
  animation: 0.3s ease 0s 1 normal forwards running simageScroll;
  backface-visibility: hidden;
  max-width: 100%;
  height: auto;
  vertical-align: middle;
  border-style: none;
  font-weight: 400;
  font-style: normal;
  font-family: Roboto, sans-serif;
  box-sizing: border-box;
  }
  
  .style-7 {
  margin: 40px 32px 0px;
  display: inline-block;
  max-height: 40px;
  width: auto;
  animation: 0.3s ease 0s 1 normal forwards running simageScroll;
  backface-visibility: hidden;
  max-width: 100%;
  height: auto;
  vertical-align: middle;
  border-style: none;
  font-weight: 400;
  font-style: normal;
  font-family: Roboto, sans-serif;
  box-sizing: border-box;
  }
  
  .style-8 {
  margin: 40px 32px 0px;
  display: inline-block;
  max-height: 40px;
  width: auto;
  animation: 0.3s ease 0s 1 normal forwards running simageScroll;
  backface-visibility: hidden;
  max-width: 100%;
  height: auto;
  vertical-align: middle;
  border-style: none;
  font-weight: 400;
  font-style: normal;
  font-family: Roboto, sans-serif;
  box-sizing: border-box;
  }
  
  .style-9 {
  margin: 40px 32px 0px;
  display: inline-block;
  max-height: 40px;
  width: auto;
  animation: 0.3s ease 0s 1 normal forwards running simageScroll;
  backface-visibility: hidden;
  max-width: 100%;
  height: auto;
  vertical-align: middle;
  border-style: none;
  font-weight: 400;
  font-style: normal;
  font-family: Roboto, sans-serif;
  box-sizing: border-box;
  }
  
  .style-10 {
  margin: 40px 32px 0px;
  display: inline-block;
  max-height: 40px;
  width: auto;
  animation: 0.3s ease 0s 1 normal forwards running simageScroll;
  backface-visibility: hidden;
  max-width: 100%;
  height: auto;
  vertical-align: middle;
  border-style: none;
  font-weight: 400;
  font-style: normal;
  font-family: Roboto, sans-serif;
  box-sizing: border-box;
  }
  
  .style-11 {
  margin: 40px 32px 0px;
  display: inline-block;
  max-height: 40px;
  width: auto;
  animation: 0.3s ease 0s 1 normal forwards running simageScroll;
  backface-visibility: hidden;
  max-width: 100%;
  height: auto;
  vertical-align: middle;
  border-style: none;
  font-weight: 400;
  font-style: normal;
  font-family: Roboto, sans-serif;
  box-sizing: border-box;
  }
  
  .style-12 {
  margin: 40px 32px 0px;
  display: inline-block;
  max-height: 40px;
  width: auto;
  animation: 0.3s ease 0s 1 normal forwards running simageScroll;
  backface-visibility: hidden;
  max-width: 100%;
  height: auto;
  vertical-align: middle;
  border-style: none;
  font-weight: 400;
  font-style: normal;
  font-family: Roboto, sans-serif;
  box-sizing: border-box;
  }
  
  .style-13 {
  margin: 40px 32px 0px;
  display: inline-block;
  max-height: 40px;
  width: auto;
  animation: 0.3s ease 0s 1 normal forwards running simageScroll;
  backface-visibility: hidden;
  max-width: 100%;
  height: auto;
  vertical-align: middle;
  border-style: none;
  font-weight: 400;
  font-style: normal;
  font-family: Roboto, sans-serif;
  box-sizing: border-box;
  }
  
  .style-14 {
  margin: 40px 32px 0px;
  display: inline-block;
  max-height: 40px;
  width: auto;
  animation: 0.3s ease 0s 1 normal forwards running simageScroll;
  backface-visibility: hidden;
  max-width: 100%;
  height: auto;
  vertical-align: middle;
  border-style: none;
  font-weight: 400;
  font-style: normal;
  font-family: Roboto, sans-serif;
  box-sizing: border-box;
  }
  
  /*Highest*/
  
  .style-15 {
  display: flex;
  flex-wrap: wrap;
  margin-right: -12px;
  margin-left: -12px;
  margin: 0px -12px;
  padding: 0px;
  box-sizing: border-box;
  --bs-gutter-x: 1.5rem;
  --bs-gutter-y: 0;
  margin-top: 0px;
  border-radius: 5px;
  margin: 30px auto;
  /* max-width: 600px; */
  box-shadow: 0 8px 7px rgba(0, 0, 0, 0.1);
  background-color: #e3e7ec;
  }
  
  .style-16 {
  flex: 0 0 auto;
  width: 50%;
  max-width: 100%;
  margin: 0px;
  padding: 0px 12px;
  box-sizing: border-box;
  flex-shrink: 0;
  padding-right: 12px;
  padding-left: 12px;
  margin-top: 0px;
  position: relative;
  }
  
  .style-17 {
  max-width: 100%;
  height: auto;
  object-fit: cover;
  object-position: 50% 50%;
  border-style: none;
  outline: rgb(33, 37, 41) none 0px;
  vertical-align: middle;
  margin: 0px;
  padding: 0px 80px;
  box-sizing: border-box;
  display: block;
  visibility: visible;
  margin-right: auto !important;
  margin-left: auto !important;
  }
  
  .style-18 {
  max-width: 100%;
  height: auto;
  object-fit: cover;
  object-position: 50% 50%;
  border-style: none;
  outline: rgb(33, 37, 41) none 0px;
  vertical-align: middle;
  margin: 0px 0px 24px;
  padding: 0px;
  box-sizing: border-box;
  display: none;
  visibility: hidden;
  margin-bottom: 24px;
  }
  
  .style-19 {
  flex: 0 0 auto;
  width: 46%;
  max-width: 100%;
  margin: 0px;
  padding: 0px 12px;
  box-sizing: border-box;
  align-self: center;
  flex-shrink: 0;
  padding-right: 12px;
  padding-left: 12px;
  margin-top: 0px;
  position: relative;
  }
  
  .style-20 {
  font-size: 28px;
  font-family: Lato;
  position: relative;
  display: block;
  margin: 0px 0px 8px;
  font-weight: 700;
  text-transform: capitalize;
  padding: 0px;
  box-sizing: border-box;
  margin-top: 0px;
  margin-bottom: 8px;
  line-height: 33.6px;
  }
  
  .style-21 {
  font-family: Lato;
  margin: 0px 0px 16px;
  padding: 0px;
  box-sizing: border-box;
  font-size: 16px;
  font-weight: 300;
  line-height: 30px;
  width: 80%;
  margin-top: 0px;
  margin-bottom: 16px;
  }
  
  .style-22 {
  font-size: 16px;
  padding: 9.6px 8px;
  appearance: button;
  background-color: rgb(255, 183, 1);
  background-image: none;
  margin: 0px;
  box-sizing: border-box;
  background: rgb(255, 183, 1) none repeat scroll 0% 0% / auto padding-box border-box;
  border: 0px none rgb(255, 193, 7);
  display: inline-block;
  transition: all 0.5s ease 0s;
  width: 20rem;
  border-radius: 4px;
  color: rgb(0, 0, 0);
  --bs-btn-color: #000;
  --bs-btn-bg: #ffc107;
  --bs-btn-border-color: #ffc107;
  --bs-btn-hover-color: #000;
  --bs-btn-hover-bg: #ffca2c;
  --bs-btn-hover-border-color: #ffc720;
  --bs-btn-focus-shadow-rgb: 217, 164, 6;
  --bs-btn-active-color: #000;
  --bs-btn-active-bg: #ffcd39;
  --bs-btn-active-border-color: #ffc720;
  --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
  --bs-btn-disabled-color: #000;
  --bs-btn-disabled-bg: #ffc107;
  --bs-btn-disabled-border-color: #ffc107;
  cursor: pointer;
  text-transform: none;
  font-family: Lato;
  line-height: 24px;
  border-color: rgb(255, 193, 7);
  overflow: visible;
  }
  
  /* Mobile styles */
  @media only screen and (max-width: 600px) {
    .style-17 {
    flex: 0 0 100%;
    max-width: 200%;
    padding: 10%;
  }
   .style-19 {
    flex: 0 0 100%;
    max-width: 100%;
    /* text-align: left; */
  }
  }
  
  /*Typing*/
  .typing-animation{
  @import url(https://fonts.googleapis.com/css?family=Karla);
  
  font: bold 135% Consolas, Monaco;
  text-align: center;
  
  @keyframes blink{
    0% { opacity:1; }
    50% { opacity:0; }
    100% { opacity:1; }
  }
  @-webkit-keyframes blink{
    0% { opacity:1; }
    50% { opacity:0; }
    100% { opacity:1; }
  }
  @-moz-keyframes blink{
    0% { opacity:1; }
    50% { opacity:0; }
    100% { opacity:1; }
  }
  
  .cursor {
    animation: blink 0.7s infinite;
  }
  }
  
  
  /*top companies*/
  
  
  .top-0 {
    vertical-align: middle;
    box-sizing: border-box;
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    margin-bottom: 8px;
  }
  
  
  /* For Request for callback dialog */
      /* Style for the modal */
      .modal {
          display: none;
          position: fixed;
          z-index: 1;
          left: 0;
          top: 0;
          width: 100%;
          height: 100%;
          overflow: auto;
          background-color: rgba(0, 0, 0, 0.4);
      }
  
      /* Style for the modal content */
      .modal-content {
          background-color: #fefefe;
          margin: 15% auto;
          padding: 20px;
          border: 1px solid #888;
          width: 80%;
          text-align: center;
      }
  
      /* Style for the close button */
      .close {
          color: #aaa;
          float: right;
          font-size: 28px;
          font-weight: bold;
      }
  
      .close:hover,
      .close:focus {
          color: black;
          text-decoration: none;
          cursor: pointer;
      }
  
      /* Style for the OK button */
      .ok-btn {
          background-color: #4CAF50;
          border: none;
          color: white;
          padding: 10px 20px;
          text-align: center;
          text-decoration: none;
          display: inline-block;
          font-size: 16px;
          margin-top: 10px;
          cursor: pointer;
      }
  
      .ok-btn:hover {
          background-color: #45a049;
      }
  
  /*review*/
  
  .review-container {
    position: relative; /* Add relative positioning */
    margin-top: 50px;
    font-size: 10px;
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
    -ms-text-size-adjust: 100%;
  }
  
  .review-container h2 {
    font-size: 25px;
  
  }
  
  .review-container :after,
  .review-container :before {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
  }
  
  .review-container ol,
  ul {
    margin-top: 0;
    margin-bottom: 10px;
  }
  
  #myCarousel {
    height: 450px;
    width: 310px;
    text-align: center;
    margin: auto;
    box-shadow: 0px 1px 3px 1px #03dac6;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  
  #my_cnt {
    padding: 40px 20px 10px;
    font-family: "Josefin Sans", sans-serif;
  }
  
  #my_cnt .item img {
    border: solid 1px #03dac6;
    background-color: #03dac6;
    border-radius: 100%;
    width: 120px;
    padding: 1px;
    margin: auto;
    display: block;
  }
  
  .cnt-title {
    font-size: 20px;
    color: #073530;
  }
  
  #my_indicators li {
    background-color: #03dac6;
    border: solid 2px #03dac6;
    border-radius: 10px; /* Adjust border-radius for visibility */
  }
  
  .cnt_content {
    padding: 20px;
    font-size: 16px;
    color: black; /* Change text color to black */
    margin-top: 40px;
  }
  
  @media screen and (max-width: 600px) {
    #myCarousel {
      height: 300px;
    }
    .cnt_content {
      padding: 10px;
      font-size: 14px;
      color: black; /* Change text color to black */
      margin-top: 15px;
    }
    #my_cnt .item img {
      width: 100px;
    }
    #my_cnt {
      padding: 20px;
    }
  }
  
  .carousel-indicators {
    position: absolute;
    bottom: -7px;
    left: 50%;
    z-index: 15;
    width: 60%;
    padding-left: 0;
    margin-left: -30%;
    text-align: center;
    list-style: none;
  }
  
  .carousel-indicators li {
    display: inline-block;
    width: 10px;
    height: 10px;
    margin: 0 5px; /* Adjust margin for spacing */
    text-indent: -999px;
    cursor: pointer;
    background-color: rgba(0, 0, 0, 0);
    border: 1px solid #fff;
    border-radius: 10px;
  }
  
  .carousel-indicators .active {
    width: 12px;
    height: 12px;
    margin: 0;
    background-color: #fff;
  }
  
  @media screen and (min-width: 768px) {
    .carousel-indicators {
      bottom: 20px;
    }
  }
  
  .carousel-inner > .item > a > img,
  .carousel-inner > .item > img,
  .img-responsive,
  .thumbnail a > img,
  .thumbnail > img {
    display: block;
    max-width: 100%;
    height: auto;
  }
  
  .carousel-inner {
    position: relative;
    width: 100%;
    overflow: hidden;
  }
  
  .carousel-inner > .item {
    position: relative;
    display: none;
    -webkit-transition: 0.6s ease-in-out left;
    -o-transition: 0.6s ease-in-out left;
    transition: 0.6s ease-in-out left;
  }
  
  .carousel-inner > .item > a > img,
  .carousel-inner > .item > img {
    line-height: 1;
  }
  
  @media all and (transform-3d),
  (-webkit-transform-3d) {
    .carousel-inner > .item {
      -webkit-transition: -webkit-transform 0.6s ease-in-out;
      -o-transition: -o-transform 0.6s ease-in-out;
      transition: transform 0.6s ease-in-out;
      -webkit-backface-visibility: hidden;
      backface-visibility: hidden;
      -webkit-perspective: 1000px;
      perspective: 1000px;
    }
  
    .carousel-inner > .item.active.right,
    .carousel-inner > .item.next {
      left: 0;
      -webkit-transform: translate3d(100%, 0, 0);
      transform: translate3d(100%, 0, 0);
    }
  
    .carousel-inner > .item.active.left,
    .carousel-inner > .item.prev {
      left: 0;
      -webkit-transform: translate3d(-100%, 0, 0);
      transform: translate3d(-100%, 0, 0);
    }
  
    .carousel-inner > .item.active,
    .carousel-inner > .item.next.left,
    .carousel-inner > .item.prev.right {
      left: 0;
      -webkit-transform: translate3d(0, 0, 0);
      transform: translate3d(0, 0, 0);
    }
  }
  
  .carousel-inner > .active,
  .carousel-inner > .next,
  .carousel-inner > .prev {
    display: block;
  }
  
  .carousel-inner > .active {
    left: 0;
  }
  
  .carousel-inner > .next,
  .carousel-inner > .prev {
    position: absolute;
    top: 0;
    width: 100%;
  }
  
  .carousel-inner > .next {
    left: 100%;
  }
  
  .carousel-inner > .prev {
    left: -100%;
  }
  
  .carousel-inner > .next.left,
  .carousel-inner > .prev.right {
    left: 0;
  }
  
  .carousel-inner > .active.left {
    left: -100%;
  }
  
  .carousel-inner > .active.right {
    left: 100%;
  }

/* New CSS for mobile to rectify horizontal scrolling */
  @media only screen and (max-width: 767px) {
    .video-container {
       overflow: hidden;
       position: relative;
       z-index: 20;
    }
}

@media only screen and (max-width: 767px) {
  .oval-container {
      margin-right: auto; /* Ensure the container is centered */
      margin-left: auto; /* Ensure the container is centered */
      justify-content: center; /* Center ovals */
  }
  
  .oval {
      width: 30%; /* Set width of ovals to 30% of container width */
      max-width: 120px; /* Set maximum width for ovals */
      margin: 0 5px; /* Adjust margin for mobile */
  }
}

@media only screen and (max-width: 767px) {
  .banner {
      width: 90%; /* Set width to 90% of screen width */
      max-width: 300px; /* Set maximum width */
      margin: 30px auto 20px; /* Center the banner horizontally and adjust top and bottom margin */
      position: relative;
      left: 0;
      right: 0;
  }
}

@media only screen and (max-width: 767px) {
  #myCarousel {
      width: 90%; /* Set width to 90% of screen width */
      max-width: 310px; /* Set maximum width */
      height: auto; /* Allow height to adjust according to content */
      margin: 0 auto; /* Center the carousel horizontally */
  }
}

/*pop-up*/

.pop-up {
  position: fixed;
  display: flex;
  flex-direction: column;
  height: auto;
  bottom: 5%;
  right: 1%;
  width: 550px;
  background-color: white;
  z-index: 100;
  box-shadow: -2px 5px 28px -1px rgba(0, 0, 0, 0.25);
  border-radius: 10px;
  display: none; /* Initially hide the pop-up */
}

.filling-fast-banner {
  position: absolute;
  top: 0;
  left: 0;
  background-color: red;
  color: white;
  padding: 5px 10px;
  font-weight: bold;
  border-top-left-radius: 10px;
  border-top-right-radius: 10px;
}

.gifje {
  width: 100%;
  height: auto;
  z-index: -10;
}

.gifje img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.inhoud {
  color: #21669e;
  text-align: center;
  padding: 20px;
}

.closep {
  position: absolute;
  top: 5px;
  right: 5px;
  font-size: 20px;
  color: #21669e;
  cursor: pointer;
  transition: background-color 0.3s ease; /* Add transition for smooth effect */
}

.closep:after {
  content: '×';
  font-size: 20px;
}

.closep.clicked:after {
  transform: scale(1.2); /* Increase the size */
}

.closep.clicked {
  background-color: rgba(0, 0, 0, 0.2); /* Darken the background when clicked */
}

#big {
  font-size: 20px;
  margin-bottom: 10px;
}

#small {
  font-size: 16px;
  margin-bottom: 10px;
}

#cta {
  margin-top: 10px;
}

#cta a {
  display: inline-block;
  background-color: #c0e2ca;
  color: #21669e;
  padding: 10px 20px;
  text-decoration: none;
  border-radius: 5px;
}

@media only screen and (max-width: 532px) {
  .pop-up {
      width: 90%;
      max-width: 90%;
      bottom: 5%;
      right: 5%;
  }

  .gifje {
      width: 100%;
  }

  #big {
      font-size: 18px;
  }

  .inhoud {
      padding: 10px;
      font-size: small;
  }

  .closep {
      top: 5px;
      right: 5px;
      font-size: 20px;
  }
  
}


  
  
  
  
  
  
  
  
  
  
  
  
  
  
  
  
  
  
  
  
  
  
  
  
  
  
  